/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Fondo y centrado */
body {
  background: url(../img/fondo.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Caja del menú */
.menu-container {
  background: #ffffff;
  padding: 30px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

/* Título */
.menu-container h2 {
  margin-bottom: 25px;
  color: #1c8103;
  font-size: 24px;
}

/* Botones/enlaces */
.menu-container a {
  display: block;
  text-decoration: none;
  background-color: #00cc11;
  color: white;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.menu-container a:hover {
  background-color: #34ad04;
}